From: Richard M. Stallman Date: Sun, 20 Jun 1993 08:49:42 +0000 (+0000) Subject: Translate F11 (ESC [ 23 ~) to ESC. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~95212 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=ed8d30ae815616cd8edae3eb44488d281e57bd3f;p=emacs.git Translate F11 (ESC [ 23 ~) to ESC. --- diff --git a/lisp/term/vt200.el b/lisp/term/vt200.el index 8ed3ee74cc5..31f64a0f8b2 100644 --- a/lisp/term/vt200.el +++ b/lisp/term/vt200.el @@ -1,3 +1,6 @@ -;; For our purposes we can treat the vt200 and vt100 alike. -;; The differences are handled by the termcap entry. +;; For our purposes we can treat the vt200 and vt100 almost alike. +;; Most differences are handled by the termcap entry. (load "term/vt100" nil t) + +;; Make F11 an escape key. +(define-key function-key-map "\e[23~" [?\e])